'use client'; import { createContext } from 'react'; export const TeamContext = createContext(null); export default TeamContext;